home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1996 April
/
Software of the Month Club 1996 April.iso
/
pc
/
os2
/
htmlchk
/
mac
/
hcsinit.mac
< prev
next >
Wrap
Text File
|
1996-02-21
|
1KB
|
24 lines
/*---------------------------------------------------------------------------*/
/* */
/* hcsInit - This REXX Macro is called when the report is first called */
/* This is where you can set up your Header and such */
/* */
/* Valid Variables are: */
/* hcReportName hcReportDescription hcServerURL */
/* hcServerRoot hcDocumentRoot hcTopHTML */
/* */
/* */
/*---------------------------------------------------------------------------*/
Call RxhcLineOut COPIES('-', 78)
title = 'Report -' hcReportDescription
extra = 70 - LENGTH(title)
Call RxhcLineOut title || COPIES(' ', extra) || Date() || ' ' || Time()
Call RxhcLineOut 'For Server [' || hcServerURL || ']'
Call RxhcLineOut 'This report started from [' || hcDocumentRoot || ']'
Call RxhcLineOut COPIES('-', 78)
RETURN